home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / MacGzip 1.0 / source / Mac / GzErrors.h < prev    next >
Text File  |  1995-08-26  |  631b  |  32 lines

  1. /* 
  2.  * File: errors.h
  3.  * Project: DXF to RIB
  4.  *  (c) SPDsoft Tuesday, June 21, 1994, GTIC
  5.  */
  6.  
  7. #ifndef _MAC_ERRORS_H_
  8. #define _MAC_ERRORS_H_
  9.  
  10. #define INPUT_ERR    1
  11. #define SYS_ERR        2
  12. #define STDC_ERR    5
  13. #define PROG_ERR    3
  14. #define NO_ERR        4
  15. #define STDC_ERR    5
  16.  
  17. #define ABORT_ERR    10
  18. #define QUIT_ERR    9
  19. #define END_ERR        8
  20. #define ASK_ERR        7
  21. #define WARN_ERR    5
  22. #define INFO_ERR    2
  23. #define DEBUG_ERR    1
  24.  
  25. extern OSErr    err;
  26.  
  27. extern int DoStdIO( void *foo, const char *fmt, ...);
  28. extern int DoError( int ErrType, int ErrSever,const char *, ...);
  29. extern char *GetErrFmt( short ErrType, short ErrID );
  30. extern void  DoNotification( void );
  31.  
  32. #endif